home *** CD-ROM | disk | FTP | other *** search
/ Windows News 1997 February / Windows News CD #1 - Fev 97.iso / share / makehelp / exemple / vccp / dial2.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-22  |  960 b   |  42 lines

  1. // dial2.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "exemple.h"
  6. #include "dial2.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDial2 dialog
  15.  
  16.  
  17. CDial2::CDial2(CWnd* pParent /*=NULL*/)
  18.     : CDialog(CDial2::IDD, pParent)
  19. {
  20.     //{{AFX_DATA_INIT(CDial2)
  21.         // NOTE: the ClassWizard will add member initialization here
  22.     //}}AFX_DATA_INIT
  23. }
  24.  
  25. void CDial2::DoDataExchange(CDataExchange* pDX)
  26. {
  27.     CDialog::DoDataExchange(pDX);
  28.     //{{AFX_DATA_MAP(CDial2)
  29.         // NOTE: the ClassWizard will add DDX and DDV calls here
  30.     //}}AFX_DATA_MAP
  31. }
  32.  
  33. BEGIN_MESSAGE_MAP(CDial2, CDialog)
  34.     //{{AFX_MSG_MAP(CDial2)
  35.         // NOTE: the ClassWizard will add message map macros here
  36.     //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CDial2 message handlers
  42.